home *** CD-ROM | disk | FTP | other *** search
/ 500 MB Nyheder Direkte fra Internet 9 / 500 MB nyheder direkte fra internet CD 9.iso / start / zipped / dos / novell / sdk.exe / SDK / INCLUDE / NWDSNAME.H < prev    next >
C/C++ Source or Header  |  1995-05-16  |  2KB  |  84 lines

  1. /******************************************************************************
  2.  
  3.   $Workfile:   nwdsname.h  $
  4.   $Revision:   1.8  $
  5.   $Modtime::   16 May 1995 10:12:10                        $
  6.   $Copyright:
  7.  
  8.   Copyright (c) 1989-1995 Novell, Inc.  All Rights Reserved.                      
  9.  
  10.   THIS WORK IS  SUBJECT  TO  U.S.  AND  INTERNATIONAL  COPYRIGHT  LAWS  AND
  11.   TREATIES.   NO  PART  OF  THIS  WORK MAY BE  USED,  PRACTICED,  PERFORMED
  12.   COPIED, DISTRIBUTED, REVISED, MODIFIED, TRANSLATED,  ABRIDGED, CONDENSED,
  13.   EXPANDED,  COLLECTED,  COMPILED,  LINKED,  RECAST, TRANSFORMED OR ADAPTED
  14.   WITHOUT THE PRIOR WRITTEN CONSENT OF NOVELL, INC. ANY USE OR EXPLOITATION
  15.   OF THIS WORK WITHOUT AUTHORIZATION COULD SUBJECT THE PERPETRATOR TO
  16.   CRIMINAL AND CIVIL LIABILITY.$
  17.  
  18.  *****************************************************************************/
  19. #if ! defined ( NWDSNAME_H )
  20. #define NWDSNAME_H
  21.  
  22. #if ! defined ( NTYPES_H )
  23. #include "ntypes.h"
  24. #endif
  25.  
  26. #if ! defined ( NWDSTYPE_H )
  27. #include "nwdstype.h"
  28. #endif
  29.  
  30. #if ! defined ( NWCALDEF_H )
  31. #include "nwcaldef.h"
  32. #endif
  33.  
  34. #if! defined ( NWDSDC_H )
  35. #include "nwdsdc.h"
  36. #endif
  37.  
  38.  
  39. #ifdef __cplusplus
  40.    extern "C" {
  41. #endif
  42.  
  43. NWDSCCODE N_API NWDSAbbreviateName
  44. (
  45.    NWDSContextHandle context,
  46.    pnstr8            inName,
  47.    pnstr8            abbreviatedName
  48. );
  49.  
  50. NWDSCCODE N_API NWDSCanonicalizeName
  51. (
  52.    NWDSContextHandle context,
  53.    pnstr8            objectName,
  54.    pnstr8            canonName
  55. );
  56.  
  57. NWDSCCODE N_API NWDSRemoveAllTypes
  58. (
  59.    NWDSContextHandle context,
  60.    pnstr8            name,
  61.    pnstr8            typelessName
  62. );
  63.  
  64. NWDSCCODE N_API NWDSResolveName
  65. (
  66.    NWDSContextHandle    context,
  67.    pnstr8               objectName,
  68.    NWCONN_HANDLE  N_FAR *conn,
  69.    pnuint32             objectID
  70. );
  71.  
  72. NWDSCCODE N_API NWDSCIStringsMatch
  73. (
  74.    NWDSContextHandle context,
  75.    pnstr8            string1,
  76.    pnstr8            string2,
  77.    pnint             matches
  78. );
  79.  
  80. #ifdef __cplusplus
  81.    }
  82. #endif
  83. #endif /* NWDSNAME_H */
  84.